【例子介绍】C#各种反射方法源码性能比较,包括:普通反射、接口调用、委托调用
【相关图片】
【源码结构】
.
├── C#各种反射方法源码_Reflect.rar
└── Reflaction
├── BIN
│ ├── ClassLib.dll
│ ├── ClassLib.pdb
│ ├── Client.exe
│ ├── Client.pdb
│ ├── Client.vshost.exe
│ ├── Client.vshost.exe.manifest
│ ├── InterfaceLib.dll
│ └── InterfaceLib.pdb
├── ClassLib
│ ├── BIN
│ │ ├── ClassLib.dll
│ │ ├── ClassLib.pdb
│ │ ├── InterfaceLib.dll
│ │ └── InterfaceLib.pdb
│ ├── ClassLib
│ │ ├── ClassLib.csproj
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── bin
│ │ │ └── Debug
│ │ ├── classTest.cs
│ │ └── obj
│ │ └── Debug
│ │ ├── ClassLib.csproj.FileListAbsolute.txt
│ │ ├── ClassLib.dll
│ │ ├── ClassLib.pdb
│ │ ├── ResolveAssemblyReference.cache
│ │ └── TempPE
│ ├── ClassLib.sln
│ └── ClassLib.suo
├── Client
│ ├── Client.csproj
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── bin
│ │ └── Debug
│ ├── frmTest.Designer.cs
│ ├── frmTest.cs
│ ├── frmTest.resx
│ └── obj
│ └── Debug
│ ├── Client.Properties.Resources.resources
│ ├── Client.csproj.FileListAbsolute.txt
│ ├── Client.csproj.GenerateResource.Cache
│ ├── Client.exe
│ ├── Client.frmTest.resources
│ ├── Client.pdb
│ ├── Refactor
│ ├── ResolveAssemblyReference.cache
│ └── TempPE
├── InterfaceLib
│ ├── BIN
│ │ ├── InterfaceLib.dll
│ │ └── InterfaceLib.pdb
│ ├── InterfaceLib
│ │ ├── InterfaceLib.csproj
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── InterfaceLib.dll
│ │ │ └── InterfaceLib.pdb
│ │ ├── interfaceTest.cs
│ │ └── obj
│ │ └── Debug
│ │ ├── InterfaceLib.csproj.FileListAbsolute.txt
│ │ ├── InterfaceLib.dll
│ │ ├── InterfaceLib.pdb
│ │ ├── Refactor
│ │ │ └── InterfaceLib.dll
│ │ └── TempPE
│ ├── InterfaceLib.sln
│ └── InterfaceLib.suo
├── InterfaceLib.sln
└── InterfaceLib.suo
29 directories, 54 files
评论